home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 1.iso / toolbox / src / exampleCode / opengl / render2pixmap / Makefile < prev    next >
Makefile  |  1996-11-11  |  479b  |  28 lines

  1. #! smake
  2.  
  3. #
  4. # $Revision: 1.2 $
  5. # $Date: 1996/08/12 16:16:25 $
  6. #
  7. include $(ROOT)/usr/include/make/commondefs
  8.  
  9. UTIL = util.o fromxwd_1.o
  10.  
  11. TARGETS = offscreen_render 
  12.  
  13. LLDLIBS = $(UTIL) -lGL -lXext -lX11 -limage
  14. OPTIMIZER = -O2 -mips2
  15. LCDEFS = -D__STDC__=1 -DDEBUG -UNDEBUG $(LINTDEFS) 
  16. LCOPTS = -Wl,-no_jump_at_eop -KPIC -call_shared
  17.  
  18. default: $(UTIL) $(TARGETS)
  19.  
  20. $(TARGETS): $(UTIL) 
  21.  
  22. include $(COMMONRULES)
  23.  
  24. $(UTIL): util.c fromxwd_1.c
  25.     $(CCF) -c util.c 
  26.     $(CCF) -c fromxwd_1.c
  27.  
  28.